home *** CD-ROM | disk | FTP | other *** search
- object Form1: TForm1
- Left = 192
- Top = 119
- Width = 538
- Height = 572
- Caption = 'Form1'
- Color = clBtnFace
- Font.Charset = DEFAULT_CHARSET
- Font.Color = clWindowText
- Font.Height = -11
- Font.Name = 'MS Sans Serif'
- Font.Style = []
- OldCreateOrder = False
- PixelsPerInch = 96
- TextHeight = 13
- object Button1: TButton
- Left = 240
- Top = 72
- Width = 225
- Height = 25
- Caption = 'UK Employees'
- Enabled = False
- TabOrder = 0
- OnClick = Button1Click
- end
- object Button2: TButton
- Left = 8
- Top = 72
- Width = 225
- Height = 25
- Caption = 'US Employees'
- Enabled = False
- TabOrder = 1
- OnClick = Button2Click
- end
- object btnCreateXML: TButton
- Left = 8
- Top = 8
- Width = 113
- Height = 25
- Caption = 'Employees -> XML'
- TabOrder = 2
- OnClick = btnCreateXMLClick
- end
- object Button4: TButton
- Left = 240
- Top = 8
- Width = 225
- Height = 25
- Caption = 'UK Employees Ordered by Surname (Asc)'
- Enabled = False
- TabOrder = 3
- OnClick = Button4Click
- end
- object Button5: TButton
- Left = 8
- Top = 40
- Width = 225
- Height = 25
- Caption = 'US Employees in ascending salary order'
- Enabled = False
- TabOrder = 4
- OnClick = Button5Click
- end
- object mXML: TMemo
- Left = 8
- Top = 399
- Width = 457
- Height = 129
- Font.Charset = DEFAULT_CHARSET
- Font.Color = clWindowText
- Font.Height = -13
- Font.Name = 'MS Sans Serif'
- Font.Style = []
- ParentFont = False
- ScrollBars = ssVertical
- TabOrder = 5
- end
- object Panel1: TPanel
- Left = 10
- Top = 109
- Width = 455
- Height = 281
- Caption = 'Panel1'
- TabOrder = 6
- object wbXML: TWebBrowser
- Left = 1
- Top = 1
- Width = 453
- Height = 279
- Align = alClient
- TabOrder = 0
- ControlData = {
- 4C000000D22E0000D61C00000000000000000000000000000000000000000000
- 000000004C000000000000000000000001000000E0D057007335CF11AE690800
- 2B2E126208000000000000004C0000000114020000000000C000000000000046
- 8000000000000000000000000000000000000000000000000000000000000000
- 00000000000000000100000000000000000000000000000000000000}
- end
- end
- object Button6: TButton
- Left = 240
- Top = 40
- Width = 225
- Height = 25
- Caption = 'UK Employees Ordered by Surname (Desc)'
- Enabled = False
- TabOrder = 7
- OnClick = Button6Click
- end
- object tblEmployee: TTable
- DatabaseName = 'DBDEMOS'
- TableName = 'employee.db'
- Left = 480
- Top = 16
- object tblEmployeeEmpNo: TIntegerField
- CustomConstraint = 'Value > 0'
- ConstraintErrorMessage = 'EmpNo cannot be 0 or negative'
- FieldName = 'EmpNo'
- DisplayFormat = '0'
- MaxValue = 9999
- MinValue = 1
- end
- object tblEmployeeLastName: TStringField
- FieldName = 'LastName'
- end
- object tblEmployeeFirstName: TStringField
- FieldName = 'FirstName'
- Size = 15
- end
- object tblEmployeePhoneExt: TStringField
- FieldName = 'PhoneExt'
- Size = 4
- end
- object tblEmployeeHireDate: TDateTimeField
- FieldName = 'HireDate'
- end
- object tblEmployeeSalary: TFloatField
- CustomConstraint = 'X > 4499'
- ConstraintErrorMessage = 'Minimum Salary is $4,500.00'
- FieldName = 'Salary'
- currency = True
- end
- end
- object dsEmployee: TDataSource
- DataSet = tblEmployee
- Left = 480
- Top = 64
- end
- end
-